home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
TemaCD
/
RCEdit
/
RCEdit.CAB
/
Make Array.js
< prev
next >
Wrap
Text File
|
1996-09-30
|
160b
|
10 lines
// Make array general function
function MakeArray(size) {
this.lenght = size;
for(var i=1; i<=size; i++) {
this[i] = 0;
}
return this;
}